|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<ReferenceType>
de.bsvrz.dav.daf.main.config.ReferenceType
public enum ReferenceType
Von der Konfiguration werden folgende Referenzierungsarten unterschieden:
| Enum Constant Summary | |
|---|---|
AGGREGATION
Aggregationen sind eine spezielle Form von gerichteten Assoziationen, bei der die referenzierten Objekte Teile des referenzierenden Aggregats darstellen. |
|
ASSOCIATION
Gerichtete Assoziationen sind im Zusammenhang mit der Konfiguration die einfachste Form der Referenzierung. |
|
COMPOSITION
Kompositionen sind eine spezielle Form von Aggregationen mit existentieller Abhängigkeit der referenzierten Objekte. |
|
| Field Summary | |
|---|---|
private String |
_value
|
| Method Summary | |
|---|---|
String |
getValue()
|
static ReferenceType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ReferenceType[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final ReferenceType ASSOCIATION
public static final ReferenceType AGGREGATION
public static final ReferenceType COMPOSITION
| Field Detail |
|---|
private final String _value
| Method Detail |
|---|
public static final ReferenceType[] values()
for(ReferenceType c : ReferenceType.values())
System.out.println(c);
public static ReferenceType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified namepublic String getValue()
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||